explicit parallelism - définition. Qu'est-ce que explicit parallelism
Diclib.com
Dictionnaire ChatGPT
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:

Traduction et analyse de mots par intelligence artificielle ChatGPT

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

Qu'est-ce (qui) est explicit parallelism - définition

TERM

explicit parallelism         
A feature of a programming language for a {parallel processing} system which allows or forces the programmer to annotate his program to indicate which parts should be executed as independent parallel tasks. This is obviously more work for the programmer than a system with {implicit parallelism} (where the system decides automatically which parts to run in parallel) but may allow higher performance.
Psychophysical parallelism         
PHILOSOPHICAL THEORY THAT MENTAL AND BODILY EVENTS OCCUR TOGETHER, WITHOUT ANY CAUSAL INTERACTION BETWEEN THEM
Parallelism (philosophy); Psycho-Physical Parallelism; Parallelism, Psycho-Physical; Psychophysical Parallelism; Psychophysical Problem; Psychophysical problem
In the philosophy of mind, psychophysical parallelism (or simply parallelism) is the theory that mental and bodily events are perfectly coordinated, without any causal interaction between them. As such, it affirms the correlation of mental and bodily events (since it accepts that when a mental event occurs, a corresponding physical effect occurs as well), but denies a direct cause and effect relation between mind and body.
Explicit (text)         
THE LAST LINES OF A WORK
Explicit (publishing)
The explicit (from Latin explicitus est, "it is unrolled", as applied to scrolls) of a text or document is either a final note indicating the end of the text and often including information about its place, date and authorship or else the final few words of the text itself. In the first case, it is similar to a colophon but always appearing at the end of the text.

Wikipédia

Explicit parallelism

In computer programming, explicit parallelism is the representation of concurrent computations by means of primitives in the form of special-purpose directives or function calls. Most parallel primitives are related to process synchronization, communication or task partitioning. As they seldom contribute to actually carry out the intended computation of the program, their computational cost is often considered as parallelization overhead.

The advantage of explicit parallel programming is the absolute programmer control over the parallel execution. A skilled parallel programmer takes advantage of explicit parallelism to produce very efficient code. However, programming with explicit parallelism is often difficult, especially for non computing specialists, because of the extra work involved in planning the task division and synchronization of concurrent processes.

In some instances, explicit parallelism may be avoided with the use of an optimizing compiler that automatically extracts the parallelism inherent to computations (see implicit parallelism).